home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / config / m68k / netbsd.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  2KB  |  63 lines

  1. #include <m68k/m68k.h>
  2.  
  3. /* Get generic NetBSD definitions.  */
  4.  
  5. #include <netbsd.h>
  6.  
  7.  
  8. /* See m68k.h.  7 means 68020 with 68881.  */
  9.  
  10. #define TARGET_DEFAULT 7
  11.  
  12. /* Define __HAVE_68881__ in preprocessor, unless -msoft-float is specified.
  13.    This will control the use of inline 68881 insns in certain macros.  */
  14.  
  15. #undef CPP_SPEC
  16. #define CPP_SPEC "%{!msoft-float:-D__HAVE_68881__ -D__HAVE_FPU__} %{posix:-D_POSIX_SOURCE}"
  17.  
  18. /* Names to predefine in the preprocessor for this target machine.  */
  19.  
  20. #define CPP_PREDEFINES "-Dunix -Dm68k -Dmc68000 -Dmc68020 -D__NetBSD__ -Asystem(unix) -Asystem(NetBSD) -Acpu(m68k) -Amachine(m68k)"
  21.  
  22. /* Make gcc agree with <machine/ansi.h> */
  23.  
  24. #undef SIZE_TYPE
  25. #define SIZE_TYPE "unsigned int"
  26.  
  27. #undef PTRDIFF_TYPE
  28. #define PTRDIFF_TYPE "int"
  29.  
  30. #undef WCHAR_TYPE
  31. #define WCHAR_TYPE "short unsigned int"
  32.  
  33. #define WCHAR_UNSIGNED 1
  34.  
  35. #undef WCHAR_TYPE_SIZE
  36. #define WCHAR_TYPE_SIZE 16
  37.  
  38. /* Every structure or union's size must be a multiple of 2 bytes.  */
  39.  
  40. #define STRUCTURE_SIZE_BOUNDARY 16
  41.  
  42. /* This is BSD, so it wants DBX format.  */
  43.  
  44. #define DBX_DEBUGGING_INFO
  45.  
  46. /* Do not break .stabs pseudos into continuations.  */
  47.  
  48. #define DBX_CONTIN_LENGTH 0
  49.  
  50. /* This is the char to use for continuation (in case we need to turn
  51.    continuation back on).  */
  52.  
  53. #define DBX_CONTIN_CHAR '?'
  54.  
  55. /* Don't use the `xsfoo;' construct in DBX output; this system
  56.    doesn't support it.  */
  57.  
  58. #define DBX_NO_XREFS
  59.  
  60. /* Don't default to pcc-struct-return, because gcc is the only compiler, and
  61.    we want to retain compatibility with older gcc versions.  */
  62. #define DEFAULT_PCC_STRUCT_RETURN 0
  63.